home *** CD-ROM | disk | FTP | other *** search
- stop();
- var depth = 10;
- var i = 0;
- while(i < 7)
- {
- eval("dec" + i).onPress = function()
- {
- this.swapDepths(depth);
- this.startDrag();
- };
- eval("dec" + i).onRelease = function()
- {
- if(!decHit.hitTest(this))
- {
- stopDrag();
- }
- };
- i++;
- }
- plyAgain.onPress = function()
- {
- _parent.gotoAndStop(2);
- };
-